home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / def / DefTextArea.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  1.3 KB  |  45 lines

  1. package asp.wizard.def;
  2.  
  3. public class DefTextArea extends DefDynaField {
  4.    private int _visibleLength;
  5.    private int _maxLength;
  6.    private int _visibleHeight;
  7.    private int _editable;
  8.  
  9.    public void setEditable(int editable) {
  10.       this._editable = editable;
  11.    }
  12.  
  13.    public int getEditable() {
  14.       return this._editable;
  15.    }
  16.  
  17.    public void setVisibleLength(int visibleLength) {
  18.       this._visibleLength = visibleLength;
  19.    }
  20.  
  21.    public void setMaxLength(int maxLength) {
  22.       this._maxLength = maxLength;
  23.    }
  24.  
  25.    public void setVisibleHeight(int visibleHeight) {
  26.       this._visibleHeight = visibleHeight;
  27.    }
  28.  
  29.    public int getVisibleLength() {
  30.       return this._visibleLength;
  31.    }
  32.  
  33.    public int getMaxLength() {
  34.       return this._maxLength;
  35.    }
  36.  
  37.    public int getVisibleHeight() {
  38.       return this._visibleHeight;
  39.    }
  40.  
  41.    public String getBaseName() {
  42.       return "MSDBTextArea";
  43.    }
  44. }
  45.